home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RGASM.RAR / ASMCODE.EXE / CHAPT1-5 / ASMSW.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-04-14  |  1.4 KB  |  67 lines

  1. @Echo off
  2. If %1. == 5. GoTo Masm5
  3. If %1. == 6. GoTo Masm6
  4. If %1. == 61. GoTo Masm61
  5. If %1. == tasm. GoTo Tasm
  6. If %1. == TASM. GoTo Tasm
  7. :Masm5
  8. Set AsmPath=d:\masm5\bin
  9. Set LnkPath=d:\masm5\bin
  10. Set DebPath=d:\masm5\bin
  11. Set AsmPg=masm
  12. Set AsmOpt= /Zd
  13. Set AsmListF5=,%tmp%\Obj.Obj,%tmp%\Lst.Lst,Nul
  14. Set AsmListF6=
  15. Set AsmListFT=
  16. Echo.
  17. Echo Microsoft Macro Assembler 5.10 and CodeView 2.3 will be used
  18. Echo.
  19. GoTo EndMas
  20. :Masm6
  21. Set AsmPath=d:\masm\bin
  22. Set LnkPath=d:\masm\binb
  23. Set DebPath=d:\masm\bin
  24. Set AsmPg=ml
  25. Set AsmOpt= /Zd /c
  26. Set AsmListF5=
  27. Set AsmListF6= /Fo%tmp%\Obj.Obj /Fl%tmp%\Lst.Lst
  28. Set AsmListFT=
  29. Echo.
  30. Echo Microsoft Macro Assembler 6.0 and CodeView 3.14 will be used
  31. Echo.
  32. GoTo EndMas
  33. :Masm61
  34. Set AsmPath=d:\masm61\bin
  35. Set LnkPath=d:\masm61\bin
  36. Set DebPath=d:\masm61\bin
  37. Set AsmPg=ml
  38. Set AsmOpt= /Zd /c
  39. Set AsmListF5=
  40. Set AsmListF6= /Fo%tmp%\Obj.Obj /Fl%tmp%\Lst.Lst
  41. Set AsmListFT=
  42. Echo.
  43. Echo Microsoft Macro Assembler 6.10 and CodeView 4.0 will be used
  44. Echo.
  45. :EndMas
  46. Set AsmOptD= /Zi
  47. Set LnkPg=link
  48. Set DebPg=cv
  49. Set SetDeb= /CO
  50. GoTo FullEx
  51. :Tasm
  52. Set AsmPath=d:\tasm
  53. Set LnkPath=d:\tasm
  54. Set DebPath=d:\tasm
  55. Set AsmPg=tasm
  56. Set AsmOpt= /l
  57. Set AsmOptD= /zi
  58. Set LnkPg=tlink
  59. Set DebPg=td
  60. Set SetDeb= /v
  61. Set AsmListF5=
  62. Set AsmListF6=
  63. Set AsmListFT=,%tmp%\Obj.Obj,%tmp%\Lst.Lst
  64. Echo.
  65. Echo Borland Turbo Assembler and Turbo Debugger will be used
  66. Echo.
  67. :FullEx